home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / mxlibs / sblib / cardtype.h < prev    next >
C/C++ Source or Header  |  1994-06-17  |  719b  |  26 lines

  1. #ifndef CARD_TYPE_H
  2. #define CARD_TYPE_H
  3.  
  4. /* Type de cartes supporter par la librairie.
  5.    Ajouter si desirer a la suite pour les nouveaux modeles.
  6.    -------------------------------------------------------- */
  7. enum CARDTYPE
  8. {
  9.    ct_NO_CARD = 0,
  10.    ct_SB,
  11.    ct_SBPRO,
  12.    ct_SB16,
  13.    ct_SB16ASP
  14. };
  15.  
  16.  
  17. /* Description du nom des cartes.
  18.    ------------------------------ */
  19. static char *cardName[] = { "NO CARD",
  20.                             "Creative Labs Sound Blaster",
  21.                             "Creative Labs Sound Blaster Pro",
  22.                             "Creative Labs Sound Blaster 16",
  23.                             "Creative Labs Sound Blaster 16 ASP"
  24.                           };
  25.  
  26. #endif